home *** CD-ROM | disk | FTP | other *** search
- ===================================================================
- RCS file: /net/acae127/home/bammi/etc/src/master/atari/pml/pmlsrc/Changelog,v
- retrieving revision 1.18
- diff -c -r1.18 Changelog
- *** 1.18 1992/12/28 08:11:47
- --- Changelog 1993/02/22 18:18:00
- ***************
- *** 298,300 ****
- --- 298,305 ----
- major hacks. see the comments at the top.
-
- ---------------------------- Patchlevel 20 ------------------------------
- + atan2.c:: Howard Chu
- + There is a simple typo in atan2.c which I encountered while trying to
- + build some -m68020 -m68881 libraries for the Falcon...
- +
- + ---------------------------- Patchlevel 21 ------------------------------
- ===================================================================
- RCS file: /net/acae127/home/bammi/etc/src/master/atari/pml/pmlsrc/PatchLev.h,v
- retrieving revision 1.17
- diff -c -r1.17 PatchLev.h
- *** 1.17 1992/12/28 08:11:48
- --- PatchLev.h 1993/02/22 18:18:01
- ***************
- *** 1,4 ****
- ! #define PatchLevel "20"
-
- /*
- *
- --- 1,4 ----
- ! #define PatchLevel "21"
-
- /*
- *
- ===================================================================
- RCS file: /net/acae127/home/bammi/etc/src/master/atari/pml/pmlsrc/atan2.c,v
- retrieving revision 1.8
- diff -c -r1.8 atan2.c
- *** 1.8 1992/03/06 19:34:30
- --- atan2.c 1993/02/22 18:18:04
- ***************
- *** 143,149 ****
- blt 1f | x < 0!
- | x > 0: return atan(y/x)
-
- ! fmoved sp@(4)@,fp0 | get y
- fdivd sp@(12),fp0 | y/x
- fatanx fp0,fp0 | atan(y/x)
- bra 3f | return
- --- 143,149 ----
- blt 1f | x < 0!
- | x > 0: return atan(y/x)
-
- ! fmoved sp@(4),fp0 | get y
- fdivd sp@(12),fp0 | y/x
- fatanx fp0,fp0 | atan(y/x)
- bra 3f | return
- ***************
- *** 150,156 ****
- 1: | x < 0
-
- fmovecr #0,fp1 | get pi
- ! fmoved sp@(4)@,fp0 | get y
- fdivd sp@(12),fp0 | y/x
- fatanx fp0,fp0 | atan(y/x)
- btst #31,sp@(4) | sign(y)
- --- 150,156 ----
- 1: | x < 0
-
- fmovecr #0,fp1 | get pi
- ! fmoved sp@(4),fp0 | get y
- fdivd sp@(12),fp0 | y/x
- fatanx fp0,fp0 | atan(y/x)
- btst #31,sp@(4) | sign(y)
-